type encoding/binary.encoder
15 uses
encoding/binary (current package)
binary.go#L430: e := &encoder{order: order, buf: buf}
binary.go#L461: e := &encoder{order: order, buf: buf}
binary.go#L486: e := &encoder{order: order, buf: pos}
binary.go#L768: type encoder coder
binary.go#L776: func (e *encoder) bool(x bool) {
binary.go#L791: func (e *encoder) uint8(x uint8) {
binary.go#L802: func (e *encoder) uint16(x uint16) {
binary.go#L813: func (e *encoder) uint32(x uint32) {
binary.go#L824: func (e *encoder) uint64(x uint64) {
binary.go#L831: func (e *encoder) int8(x int8) { e.uint8(uint8(x)) }
binary.go#L835: func (e *encoder) int16(x int16) { e.uint16(uint16(x)) }
binary.go#L839: func (e *encoder) int32(x int32) { e.uint32(uint32(x)) }
binary.go#L843: func (e *encoder) int64(x int64) { e.uint64(uint64(x)) }
binary.go#L914: func (e *encoder) value(v reflect.Value) {
binary.go#L981: func (e *encoder) skip(v reflect.Value) {
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)